home *** CD-ROM | disk | FTP | other *** search
/ Internet News 2001 March / Internet News 2001-03 - CD-ROM / IN200103.ISO / Mac / iView / iviewpro.hqx / iView mediaPro ƒ / iView mediaPro v1.0 / Script Examples / Application Class < prev    next >
Encoding:
Text File  |  2000-12-24  |  602 b   |  28 lines

  1. tell application "iView mediaPro"
  2.     
  3.     (* get/set properties *)
  4.     
  5.     -- get the name
  6.     -- get the version
  7.     -- get the frontmost
  8.     
  9.     
  10.     (* function samples *)
  11.     
  12.     -- exists -- app is running
  13.     -- data size of name -- always "iView MediaPro"
  14.     
  15.     
  16.     (* command samples *)
  17.     
  18.     -- open (choose file) -- opens a single catalog file, or adds an image to a catalog
  19.     -- open (choose folder) -- import a single folder or volume to a catalog
  20.     -- open alias "Mac OS X:"
  21.     -- print (choose file) -- opens a catalog file, prints it and then closes it
  22.     -- quit without saving
  23.     -- quit with saving
  24.     -- quit ask
  25.     -- quit
  26.     
  27. end tell
  28.